home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / TraySetToolTip.au3 < prev    next >
Text File  |  2006-06-17  |  154b  |  12 lines

  1. #Include <Constants.au3>
  2. #NoTrayIcon
  3.  
  4. TraySetState()
  5. TraySetToolTip("This is my new tooltip text!")
  6.  
  7. While 1
  8.     Sleep(10)    ; Idle loop
  9. WEnd
  10.  
  11. Exit
  12.